Product Area: Designer Technical Area: Design - Formulas Platform: Cross Platform
SPR# SSHE4Y3UK7 - Changed the behavior of @ReplaceSubstring to prevent crashes caused by large @ReplaceSubstring formulas and by recursive calls.
The following example shows the change in behavior for @ReplaceSubstring("nnnn";"nn";"12345")
Source String
"nnnn"
Old substring
"nn"
New substring
"12345"
The old behavior (using a character by character scan) would result in "123451234512345" where "nn" is found and replaced three times. The new behavior will find the next match after the first match, resulting in "1234512345" which "nn" is found and replaced twice.
Last Modified on 05/30/2007 |  |
|
|
|
|